home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-02-13 | 826 b | 40 lines | [TEXT/MPS ] |
- // Copyright © 1992 Apple Computer, Inc. All rights reserved.
- // UAppFrameAdorner.h
- // Kent Sandvik DTS
- // This file contains the TAppFrameAdorner class, the simple frame
- // adornment in the window
- // Version Info (latest first):
- //
- // <1> khs 1.0 First final version
- // <2> khs 1.0.1 Fixed a memory leak in TMapApplication::GetSleepValue()
-
-
- #ifndef __UAPPFRAMEADORNER__
- #define __UAPPFRAMEADORNER__
-
- #ifndef __UADORNERS__
- #include <UAdorners.h>
- #endif
-
- #ifndef __INCLUDEFILES__
- #include <IncludeFiles.h>
- #endif
-
- // a simple adorner, that just draws a nice frame inside the document itself
- DeclareClassDesc(TAppFrameAdorner);
-
- class TAppFrameAdorner : public TAdorner
- {
-
- DeclareClass(TAppFrameAdorner);
-
- public:
- TAppFrameAdorner();
- virtual void Draw(TView* itsView,
- const VRect& /*area*/);
- };
-
-
-
- #endif
-